home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _87C652BC9F1C4F33BAB847FBBF0D8375 < prev    next >
Encoding:
Text File  |  2006-08-04  |  749 b   |  29 lines

  1.  
  2. from PSPApp import *
  3.  
  4. def ScriptProperties():
  5.     return {
  6.         'Author': u'Corel Corporation',
  7.         'Copyright': u'Copyright (c) 2003-2004 Corel Corporation  All rights reserved.',
  8.         'Description': 'Factory default preset for DropShadow effect',
  9.         'Host': 'Paint Shop Pro 8',
  10.         'Host Version': '8.00',
  11.         }
  12.  
  13. def Preset_DropShadow():
  14.     return {
  15.         'Opacity': 50,
  16.         'GeneralSettings': {
  17.             'AutoActionMode': 0,
  18.             'ExecutionMode': 0
  19.             },
  20.         'Vertical': 10,
  21.         'Blur': 5.0,
  22.         'Color': (0, 0, 0),
  23.         'NewLayer': 0,
  24.         'Horizontal': 10
  25.         }
  26.  
  27. def Do(Environment):
  28.     App.Do( Environment, 'DropShadow', Preset_DropShadow())
  29.